17 lines
316 B
JSON
17 lines
316 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"noEmit": true
|
|
},
|
|
"exclude": ["dist", "node_modules"],
|
|
"include": [
|
|
"__tests__",
|
|
"src",
|
|
"eslint.config.mjs",
|
|
"rollup.config.ts",
|
|
"vitest.config.ts"
|
|
]
|
|
}
|