zed/styles/tsconfig.json

28 lines
819 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "es2015",
"module": "commonjs",
"esModuleInterop": true,
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"strict": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": false,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
2023-06-16 07:37:08 +03:00
"skipLibCheck": true,
"useUnknownInCatchVariables": false
},
2023-08-29 23:02:04 +03:00
"exclude": ["node_modules"]
2022-04-06 18:28:56 +03:00
}