mirror of
https://github.com/Xevion/linkpulse.git
synced 2025-12-09 10:07:44 -06:00
34 lines
830 B
JSON
34 lines
830 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowImportingTsExtensions": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"noEmit": true,
|
|
"noImplicitOverride": true,
|
|
"noUnusedLocals": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "es2017",
|
|
"types": ["vite/client"]
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"transpiler": "ts-node/transpilers/swc",
|
|
"files": true,
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"isolatedModules": false
|
|
}
|
|
}
|
|
}
|