nitro/tsconfig.base.json

27 lines
677 B
JSON
Raw Permalink Normal View History

2023-03-16 23:15:43 +01:00
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom", "dom.iterable", "esnext"],
2023-03-16 23:15:43 +01:00
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2023-03-18 00:45:34 +01:00
"strictNullChecks": false,
2023-03-16 23:15:43 +01:00
"baseUrl": ".",
2023-03-16 23:54:48 +01:00
"paths": {
"@nitro/renderer": ["libs/renderer/src/index.ts"]
}
2023-03-16 23:15:43 +01:00
},
"exclude": ["node_modules", "tmp"]
}