14 lines
340 B
JSON
14 lines
340 B
JSON
|
{
|
||
|
"extends": "./tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
"noEmit": false,
|
||
|
"lib": ["ES2020", "dom"],
|
||
|
"declaration": true,
|
||
|
"inlineSources": true,
|
||
|
"outDir": "dist",
|
||
|
"rootDir": "src"
|
||
|
},
|
||
|
"exclude": ["**/*.spec.ts", "**/*.spec.tsx", "**/*.test.ts", "**/*.test.tsx"],
|
||
|
"include": ["./src/**/*.ts", "./src/**/*.tsx"]
|
||
|
}
|