19 lines
346 B
JSON
19 lines
346 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"allowJs": true,
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"test/**/*.ts",
|
|
"tests/**/*.ts",
|
|
"scratch/**/*.ts",
|
|
"scratch/**/*.js",
|
|
"jest.config.js",
|
|
"*.config.mjs"
|
|
],
|
|
"exclude": ["node_modules", "dist", "documentation"]
|
|
}
|