generated from blueplum/typescript-template
27 lines
571 B
JSON
27 lines
571 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "es2023",
|
|
"lib": ["ES2023"],
|
|
"module": "esnext",
|
|
"types": ["vitest/importMeta", "node"],
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"emitDeclarationOnly": true,
|
|
"declaration": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"noUnusedLocals": false,
|
|
"erasableSyntaxOnly": true,
|
|
|
|
"outDir": "./dist",
|
|
"rootDir": "./src"
|
|
},
|
|
"include": ["src/config.ts"]
|
|
}
|