Paul-API-Next/tsconfig.json

28 lines
655 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"noEmit": true,
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"types": ["vite/client"],
"outDir": "./dist"
},
"include": ["./src", "dist/host.js"],
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
}
}