25 lines
542 B
JSON
25 lines
542 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"moduleDetection": "force",
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"extensions/**/*",
|
|
"lib/**/*",
|
|
"__tests__/**/*",
|
|
"vitest.config.ts",
|
|
"eslint.config.js"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|