1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 04:05:01 +00:00
mon-entreprise/site/tsconfig.json
Jérémy Rialland 1ca577d360 Add husky for execute pre commit script
Build yaml dts on pre commit
Vite build is 20sec faster
2022-06-10 16:09:43 +02:00

32 lines
641 B
JSON

{
"compilerOptions": {
"baseUrl": "source",
"moduleResolution": "node",
"module": "esnext",
"target": "esnext",
"esModuleInterop": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowJs": true,
"isolatedModules": true,
"paths": {
"@/*": ["*"]
},
"types": ["vite/client"],
"typeRoots": ["./types/", "./node_modules/@types"],
"noEmit": true,
"strict": true
},
"ts-node": {
"transpileOnly": true
},
"include": [
"source",
"scripts",
"test/**/*.ts",
"vite.config.ts",
"vite-iframe-script.config.ts"
]
}