You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
462 B
23 lines
462 B
2 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"baseUrl": "./app/javascript",
|
||
|
"checkJs": false,
|
||
|
"experimentalDecorators": true,
|
||
|
"jsx": "react",
|
||
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
||
|
"module": "ES2022",
|
||
|
"moduleResolution": "node",
|
||
|
"noEmit": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"strict": false,
|
||
|
"target": "ES2022"
|
||
|
},
|
||
|
"exclude": [
|
||
|
"**/build/*",
|
||
|
"**/node_modules/*",
|
||
|
"**/public/*",
|
||
|
"**/vendor/*"
|
||
|
]
|
||
|
}
|