24 lines
582 B
JSON
24 lines
582 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"lib": ["ESNext"],
|
|
"typeRoots": ["src/types", "./node_modules/@types"],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
},
|
|
"emitDeclarationOnly": true,
|
|
"noEmit": false,
|
|
"noEmitOnError": false,
|
|
"declaration": true,
|
|
"outDir": "dist/types",
|
|
"rootDir": ".",
|
|
"allowImportingTsExtensions": true
|
|
},
|
|
"include": ["src", "fixtures"],
|
|
"exclude": ["node_modules", "build", "**/*.test.ts"]
|
|
}
|