28 lines
476 B
JSON
28 lines
476 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts",
|
|
"dist"
|
|
],
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"rootDir": ".",
|
|
"outDir": "./dist/types",
|
|
"baseUrl": "src",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true
|
|
}
|
|
}
|