demarches-normaliennes/tsconfig.json

24 lines
632 B
JSON
Raw Permalink Normal View History

2022-02-02 17:16:50 +01:00
{
2022-06-17 12:36:21 +02:00
"include": ["app/javascript/**/*.ts", "app/javascript/**/*.tsx"],
2022-02-02 17:16:50 +01:00
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2019"],
"target": "ES2019",
2022-06-17 12:36:21 +02:00
"moduleResolution": "node",
"module": "es2020",
2022-02-02 17:16:50 +01:00
"jsx": "react",
"esModuleInterop": true,
2022-06-17 12:36:21 +02:00
"experimentalDecorators": true,
"isolatedModules": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
2022-06-17 12:36:21 +02:00
"types": ["react/next", "react-dom/next", "vite/client"],
2022-02-02 17:16:50 +01:00
"paths": {
"~/*": ["./app/javascript/*"],
"@utils": ["./app/javascript/shared/utils.ts"]
2022-06-17 12:36:21 +02:00
},
"noEmit": true
}
2022-02-02 17:16:50 +01:00
}