create-ima-app
Version:
Create a IMA.js App easily.
26 lines (25 loc) • 484 B
JSON
{
"compilerOptions": {
"allowJs": true,
"target": "ES2022",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"module": "ES2022",
"moduleResolution": "Node16",
"strict": true,
"resolveJsonModule": true,
"jsx": "react-jsx",
"baseUrl": ".",
"outDir": "./build/ts-cache",
"paths": {
"app/*": [
"app/*"
],
}
},
"include": ["./app/**/*", "./build/tmp/types/**/*"],
"exclude": ["./**/__tests__"]
}