20 lines
484 B
JSON
20 lines
484 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"target": "esnext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "esnext",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true
|
|
},
|
|
"include": ["src", "./*.ts"],
|
|
"exclude": ["node_modules", "vitest.main.config.ts"]
|
|
}
|