22 lines
493 B
JSON
22 lines
493 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@data/*": ["./data/*"],
|
|
},
|
|
"emitDeclarationOnly": true,
|
|
"noEmit": false,
|
|
"noEmitOnError": false,
|
|
"declaration": true,
|
|
"rootDir": ".",
|
|
"allowImportingTsExtensions": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "build", "**/*.test.ts"]
|
|
}
|