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"],
|
2022-03-31 12:07:52 +02:00
|
|
|
"target": "ES2019",
|
2022-06-17 12:36:21 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"module": "es2020",
|
2022-02-02 17:16:50 +01:00
|
|
|
"jsx": "react",
|
2022-03-31 12:07:52 +02:00
|
|
|
"esModuleInterop": true,
|
2022-06-17 12:36:21 +02:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"sourceMap": true,
|
2022-02-08 12:49:51 +01:00
|
|
|
"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
|
|
|
}
|