pinmenote-extension/tsconfig.json

23 lines
531 B
JSON
Raw Normal View History

2022-12-17 22:55:05 +01:00
{
"compilerOptions": {
2023-06-15 21:55:08 +02:00
"target": "es2015",
2022-12-17 22:55:05 +01:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmit": true,
"jsx": "react",
"baseUrl": ".",
2023-02-17 14:06:42 +01:00
"typeRoots": ["node_modules/@types"]
2022-12-17 22:55:05 +01:00
},
"include": [
"src/**/*.tsx",
"src/**/*.ts",
]
}