29 lines
602 B
JSON
29 lines
602 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"alwaysStrict": true,
|
|
"checkJs": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ES2022",
|
|
"moduleResolution": "Node16",
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
},
|
|
"include": [
|
|
"./assets/**/*",
|
|
"./eslint.config.js",
|
|
"./uno.config.js",
|
|
"./package.json",
|
|
"./tsconfig.json",
|
|
"./.vscode/*.json",
|
|
],
|
|
"exclude": [
|
|
"./node_modules/**",
|
|
"./dist",
|
|
]
|
|
}
|