Files
mono/components/controller/tsconfig.json
T

25 lines
582 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ESNext"],
"outDir": "dist",
"baseUrl": "./src",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"allowJs": false,
"noImplicitAny": false,
"skipLibCheck": true,
"composite": true,
"incremental": true,
"tsBuildInfoFile": "./dist/.tsbuildinfo",
"paths": {
"~/*": ["*"]
}
},
"include": ["src/**/*.ts", "scripts/*.ts", "tests/**/*.ts"],
"exclude": ["node_modules", "dist"]
}