grisp-shadow-fleet / tsconfig.json
SNAPKITTYWEST's picture
push from SNAPKITTYWEST/grisp-shadow-fleet
b8a03fa verified
Raw
History Blame Contribute Delete
704 Bytes
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"types": [
"node",
"jest",
"vite/client"
],
"rootDir": ".",
"outDir": "dist",
"strict": true,
"isolatedModules": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"sourceMap": true
},
"include": [
"abstract/**/*.ts",
"pages/**/*.ts",
"desktop/**/*.ts",
"universe/**/*.ts",
"main.ts",
"tests/**/*.ts",
"vite.config.ts"
],
"exclude": [
"dist",
"node_modules",
"_site"
]
}