forked from treehouse/mastodon
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.
22 lines
462 B
22 lines
462 B
{ |
|
"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/*" |
|
] |
|
}
|
|
|