ProzillaOS/tsconfig.json
Prozilla ac322e08e0
Migration to TypeScript - Stage 3
Added typescript linting
2024-05-07 23:46:02 +02:00

38 lines
No EOL
663 B
JSON

{
"compilerOptions": {
/* Language and Environment */
"target": "ESNext",
"jsx": "react-jsx",
/* Modules */
"module": "commonjs",
"moduleResolution": "Node",
"types": ["webpack-env"],
"allowUmdGlobalAccess": true,
"resolveJsonModule": true,
/* JavaScript Support */
"allowJs": true,
"checkJs": true,
/* Emit */
"noEmit": true,
/* Interop Constraints */
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": false,
},
"include": [
"src/**/*"
],
"exclude": [
"./node_modules",
"./build",
"./dist",
"./.vscode"
]
}