seedling/source/common/.tsconfig.json
romanjaros da23b80647
All checks were successful
forgejo/Procyon/seedling/pipeline/head This commit looks good
Rename source folders
2023-10-24 20:43:21 +02:00

24 lines
No EOL
436 B
JSON

{
"compilerOptions": {
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"sourceMap": true,
"esModuleInterop": true,
"allowJs": true,
"outDir": "build",
"module": "commonjs",
"target": "es6",
"lib": [
"es6",
"dom"
],
},
"exclude": [
"./node_modules",
"./src/**/__tests__/*.tsx"
]
}