pashto-dictionary/functions/tsconfig.json

32 lines
663 B
JSON
Raw Normal View History

2024-08-14 19:30:10 +00:00
{
"compilerOptions": {
2024-11-27 17:27:59 +00:00
"target": "ES2020",
2024-08-14 19:30:10 +00:00
"module": "commonjs",
2024-11-27 17:27:59 +00:00
"lib": [
"es2020",
"dom"
],
"declaration": true,
2024-08-14 19:30:10 +00:00
"strict": true,
2024-11-27 17:27:59 +00:00
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": false,
"inlineSourceMap": true,
"inlineSources": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"typeRoots": [
"./node_modules/@types"
]
2024-08-14 19:30:10 +00:00
},
2024-11-27 17:27:59 +00:00
"exclude": [
"node_modules",
"cdk.out"
2024-08-14 19:30:10 +00:00
]
}