21 lines
381 B
JSON
21 lines
381 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"allowJs": true
|
|
},
|
|
"exclude": ["node_modules", "**/.*/*", "dist"],
|
|
"include": [
|
|
".eslintrc.*",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.mts",
|
|
"**/*.js",
|
|
"**/*.cjs",
|
|
"**/*.mjs",
|
|
"**/*.jsx",
|
|
"**/*.json"
|
|
]
|
|
}
|