Files
keikos.work/tsconfig.json

27 lines
547 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",
"**/*.json"
],
"exclude": [
"./node_modules/**",
"./dist"
]
}